1 ========================================================================
2 WINDOWS FORMS APPLICATION : CSCodeDOM Project Overview
3 ========================================================================
5 /////////////////////////////////////////////////////////////////////////////
8 The CSCodeDOM project demonstrates how to use the .NET CodeDOM mechanism to
9 enable dynamic souce code generation and compilation at runtime.
11 The ScriptControl class included in this project accepts a piece of code
12 written in C#/VB.NET/JScript and dynamically generates method & class wrapper
13 for the code. Then the dynamically generated code will be compiled into
14 an in-memory assembly. The compiled code then can be called via reflection.
16 The MainForm class in this project provides a simple UI for testing the
20 /////////////////////////////////////////////////////////////////////////////
23 Dynamic Source Code Generation and Compilation
24 http://msdn.microsoft.com/en-us/library/650ax5cx.aspx
27 /////////////////////////////////////////////////////////////////////////////